All Questions
4 questions
3votes
1answer
211views
Scraping metrics from log files
https://github.com/bodgix/log2metric/pull/1 This is my very first Go program so please forgive any beginner errors. This is a rewrite of a monitoring script I had written in Ruby. Coming from Ruby, ...
8votes
1answer
564views
CIS 194 Homework 2: Parsing an error log
Here is another reference solution, that I discovered after writing my own: https://insight.io/github.com/beloglazov/haskell-course/blob/HEAD/hw2.hs I am following this lecture course as a complete ...
4votes
2answers
12kviews
Diving into Python sequences: analyze an access.log
As a first little Python exercise, I wrote an analyzer/summarizer for my nginx accesslogs. The code works fine but I'm not sure if I used the different types of sequences properly or made some other ...
5votes
1answer
1kviews
Review Simple Logparser
This is my first try with Python. I wanted to parse some Log4J so I thought it a good opportunity to write my first Python program. The format of the logs I deal ...